5eca81cd1af0cc7c6754a4e1f2e5ae98d16dcbcb,plugins/org.yakindu.sct.model.stext/src/org/yakindu/sct/model/stext/scoping/STextScopeProvider.java,STextScopeProvider,addScopeForEnumType,#EnumerationType#IScope#Predicate#,157

Before Change


	}

	protected IScope addScopeForEnumType(EnumerationType element, IScope scope, final Predicate<IEObjectDescription> predicate) {
		scope = Scopes.scopeFor((element).getEnumerator(), scope);
		scope = new FilteringScope(scope, predicate);
		return scope;
	}

	protected IScope addScopeForComplexType(final ComplexType type, IScope scope, final Predicate<IEObjectDescription> predicate) {

After Change


	}

	protected IScope addScopeForEnumType(EnumerationType element, IScope scope) {
		return Scopes.scopeFor((element).getEnumerator(), scope);
	}

	protected IScope addScopeForComplexType(final ComplexType type, IScope scope) {